home *** CD-ROM | disk | FTP | other *** search
/ USA Bestseller / USA BESTSELLER Vol 1-95 (Hepp-Computer)(1995).iso / e013 / install.bat < prev    next >
DOS Batch File  |  1994-04-27  |  816b  |  26 lines

  1. @echo off
  2. cls
  3. if %1x == x goto HELP
  4. if %2x == x goto HELP
  5. echo Will copy the ALL-PRO League Scheduler files from %1 to %2\ALLPROLS
  6. echo Press Ctrl Break to abort or any other key to continue
  7. pause >nul
  8. mkdir %2\ALLPROLS
  9. copy %1*.* %2\ALLPROLS
  10. cls
  11. echo starting ALL-PRO League Scheduler...
  12. %2
  13. cd %2\ALLPROLS
  14. LS
  15. goto END
  16. :HELP
  17. echo ALL-PRO League Scheduler Installation
  18. echo =======================================
  19. echo Usage: INSTALL [source:] [destination:]
  20. echo =======================================
  21. echo Example: INSTALL A: C:   - Will install Scheduler files from drive A: to
  22. echo                            drive C: (C:\ALLPROLS).
  23. echo Note: See the README file for the complete program documentation.
  24. echo       Type COPY README PRN and press [Enter] to print the documentation.
  25. :END
  26.